From: Fabio Lagalla Date: Tue, 26 Jan 2021 13:57:02 +0000 (+0100) Subject: gskglrenderer: Use gboolean instead of bool X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1~1^2~83^2^2~473^2~2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=1b698c896eccb2997388c477012216029a935318;p=gtk4.git gskglrenderer: Use gboolean instead of bool --- diff --git a/gsk/gl/gskglrenderops.c b/gsk/gl/gskglrenderops.c index ad9518b228..f5c6ab6e62 100644 --- a/gsk/gl/gskglrenderops.c +++ b/gsk/gl/gskglrenderops.c @@ -859,7 +859,7 @@ void ops_set_linear_gradient (RenderOpBuilder *self, guint n_color_stops, const GskColorStop *color_stops, - bool repeat, + gboolean repeat, float start_x, float start_y, float end_x, @@ -924,7 +924,7 @@ void ops_set_radial_gradient (RenderOpBuilder *self, guint n_color_stops, const GskColorStop *color_stops, - bool repeat, + gboolean repeat, float center_x, float center_y, float start, diff --git a/gsk/gl/gskglrenderopsprivate.h b/gsk/gl/gskglrenderopsprivate.h index d556009d06..20af58fda5 100644 --- a/gsk/gl/gskglrenderopsprivate.h +++ b/gsk/gl/gskglrenderopsprivate.h @@ -317,7 +317,7 @@ void ops_set_unblurred_outset_shadow (RenderOpBuilder *se void ops_set_linear_gradient (RenderOpBuilder *self, guint n_color_stops, const GskColorStop *color_stops, - bool repeat, + gboolean repeat, float start_x, float start_y, float end_x, @@ -325,7 +325,7 @@ void ops_set_linear_gradient (RenderOpBuilder *self, void ops_set_radial_gradient (RenderOpBuilder *self, guint n_color_stops, const GskColorStop *color_stops, - bool repeat, + gboolean repeat, float center_x, float center_y, float start, diff --git a/gsk/gl/opbuffer.h b/gsk/gl/opbuffer.h index a5c1af9189..e13e8ab2e4 100644 --- a/gsk/gl/opbuffer.h +++ b/gsk/gl/opbuffer.h @@ -146,7 +146,7 @@ typedef struct IntUniformValue n_color_stops; float start_point[2]; float end_point[2]; - bool repeat; + gboolean repeat; } OpLinearGradient; typedef struct @@ -157,7 +157,7 @@ typedef struct float end; float radius[2]; float center[2]; - bool repeat; + gboolean repeat; } OpRadialGradient; typedef struct